From 83bd20f0d6cb766766bc9c26bd4106f7f5ac92c3 Mon Sep 17 00:00:00 2001 From: "cl349@firebug.cl.cam.ac.uk" Date: Mon, 23 May 2005 14:26:33 +0000 Subject: [PATCH] bitkeeper revision 1.1512 (4291e819kp5stS-T-KsgGXWV2Tvfow) XendDomain.py: Get sizeof right. Signed-off-by: Christian Limpach --- tools/python/xen/xend/XendDomain.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/python/xen/xend/XendDomain.py b/tools/python/xen/xend/XendDomain.py index 08a494b00f..d45a3547df 100644 --- a/tools/python/xen/xend/XendDomain.py +++ b/tools/python/xen/xend/XendDomain.py @@ -322,8 +322,8 @@ class XendDomain: """ SIGNATURE = "LinuxGuestRecord" - sizeof_int = calcsize("L") - sizeof_unsigned_long = calcsize("i") + sizeof_int = calcsize("i") + sizeof_unsigned_long = calcsize("L") PAGE_SIZE = 4096 class XendFile(file): -- 2.30.2